Test ac Line Calculator.txt by b+ 2020-03-07 mod 2021-02-21
[
	at 13, 4
	. /	*** Line Calculator ***
	at 5, 7  
	. Arith: +, -, *, /,   Constants: e, pi, random 0-1 use rnd
	at 5, 9
	. (Test - for subtraction spaced on both sides to distinguish from neg numbers)
	at 5, 11 
	. Functions: modulus use %, power use ^, log, exp, sqr, int, random 0 to 1 use rnd
	at 5, 13
	. Trig (radians): sin( ), cos( ), tan( ), atan( ) Angle Conversion: rad( ), deg( )
	at 5, 15 
	. Boolean: =, <>, <, <=, >, >=, and, or not( ) (Not is a Function)
	row = int(288/16 + .5)
	loc row, 5
	? (just enter to quit) Enter an expression to evaluate; expression
	isEmpty $= expression,
	Jmp isEmpty
	result = expression
	at 5, 20
	. The calculator came up with this: ;result
	at 5, 25
	. Wait 5 secs...
	Wait 5
	Cls
]
.
. Goodbye!